h1 {
	color: blue;
	font-family: Courier New;
}

p {
	color: purple;
	font-family: Courier New;
	font-weight: bold;
}

div {
	width: 50px;
	height: 50px;
	border: 3px solid green;
	color: green;
	font-family: Courier New;
	background-color: yellow;
	border-radius: 5px;
	display: inline-block;
}

table {
	border: 2px solid red;
	border-radius: 3px;
	font-family: Courier New;
	color: red;
	background-color: purple;
}

th {
	border: 2px solid red;
}

td {
	border: 2px solid red;
	border-radius: 3px;
}

body {
	background-color: gray;
	border: 3px solid black;
	border-radius: 5px;
}

* {
	font-family: Courier New;
}